/*-----------------------------------------*/
/****************变量*******************/
/*-----------------------------------------*/
/*-----------------------------------------*/
/****************公用样式*******************/
/*-----------------------------------------*/
.clear_both::after {
  clear: both;
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
}
.lf {
  float: left;
}
.rt {
  float: right;
}
.transition {
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.transform {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.hover_transform {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.text_ban {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
.track-list {
  scrollbar-face-color: #c7c7c7;
  scrollbar-highlight-color: #c7c7c7;
  scrollbar-3dlight-color: #c7c7c7;
  scrollbar-darkshadow-color: #c7c7c7;
  scrollbar-Shadow-color: #c7c7c7;
  scrollbar-arrow-color: #c7c7c7;
  scrollbar-track-color: #ebebeb;
}
.track-list::-webkit-scrollbar {
  width: 7px;
  height: 9px;
}
.track-list::-webkit-scrollbar-button:end:increment,
.track-list::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 0;
  background-color: transparent;
}
.track-list::-webkit-scrollbar-track-piece {
  -webkit-border-radius: 0;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  background: #ebebeb;
}
.track-list::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 4px;
}
.track-list::-webkit-scrollbar-thumb:horizontal {
  width: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 4px;
}
/*-----------------------------------------*/
/****************元素样式*******************/
/*-----------------------------------------*/
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
  color: #333;
  background: white;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
/** 清除内外边距 **/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/* 要注意表单元素并不继承父级 font 的问题 */
input,
select,
textarea {
  font-size: 100%;
}
/* 去掉各 table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align */
th {
  text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
  border: 0;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
i {
  font-style: normal;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
  text-align: left;
}
/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 16px;
}
h3,
h4,
h5,
h6 {
  font-size: 14px;
}
/* 解决ie下重复最后字符 */
q:before,
q:after {
  content: '';
}
/* 统一上标和下标 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
}
/** 设置默认字体 **/
body,
button,
input,
select,
textarea {
  font: 14px helvetica neue, arial, hiragino sans gb, microsoft yahei, sans-serif;
}
address,
cite,
dfn,
em,
var {
  font-style: normal;
}
/* 将斜体扶正 */
code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}
/* 统一等宽字体 */
small {
  font-size: 12px;
}
/* 小于 12px 的中文很难阅读，让 small 正常化 */
/** 重置列表元素 **/
ul,
ol {
  list-style: none;
}
/** 重置文本格式元素 **/
a {
  text-decoration: none;
  cursor: pointer;
  color: #333;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
a:hover {
  color: #f9be00;
}
/** 清除选中状态蓝色边框 **/
a,
img,
input,
select,
textarea {
  outline: none;
  border: none;
}
/** 定义布局方式 **/
* {
  box-sizing: border-box;
}
/*-----------------------------------------*/
/****************icon样式*******************/
/*-----------------------------------------*/
/*-----------------------------------------*/
/**************页面公用样式*****************/
/*-----------------------------------------*/
html {
  min-width: 1200px;
}
.container {
  width: 1150px;
  padding: 0 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 76px;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  z-index: 10001;
}
.header .logo {
  float: left;
}
.header .logo img {
  width: auto;
  height: 65px;
  margin-top: 5px;
}
.header .nav {
  float: right;
  position: relative;
  margin-top: 3px;
}
.header .nav:after {
  position: absolute;
  bottom: 0;
  left: 100%;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  z-index: 1001;
}
.header .nav > li {
  float: left;
  position: relative;
}
.header .nav > li:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  content: "";
  background-color: #fff;
  z-index: 101;
}
.header .nav > li:hover > a {
  color: #f9be00;
}
.header .nav > li:hover i {
  border-top-color: #f9be00;
}
.header .nav > li:hover .drop_down_01 {
  height: 148px;
}
.header .nav > li:hover .drop_down_02 {
  height: 74px;
}
.header .nav > li a {
  display: block;
  font-size: 18px;
  padding: 0 30px;
  line-height: 70px;
}
.header .nav > li a:hover {
  text-decoration: none;
}
.header .nav > li a.active {
  color: #f9be00;
}
.header .nav > li i {
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  border: 5px solid transparent;
  cursor: pointer;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.header .nav > li .drop_down {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  border: 1px solid #efefef;
  border-bottom: 0;
  border-top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  z-index: 100;
  overflow: hidden;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.header .nav > li .drop_down li:last-child a {
  border-bottom-color: #efefef;
}
.header .nav > li .drop_down a {
  line-height: 36px;
  padding: 0;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.footer {
  padding: 20px 0 10px;
  line-height: 24px;
  color: #fff;
  background-color: #383b3e;
}
.footer dl {
  float: left;
  margin-left: 50px;
}
.footer dl:first-child {
  margin-left: 0;
}
.footer dd {
  color: #f9be00;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  text-decoration: none;
}
.footer .code_img {
  float: right;
  text-align: center;
  width: 80px;
  height: auto;
}
.footer .code_img img {
  width: 100%;
  height: auto;
}
.footer .beian {
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid #252729;
  text-align: center;
  position: relative;
}
.footer .beian img {
  vertical-align: middle;
}
.footer .beian:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  border-top: 1px solid #4b4f53;
}
.s_banner {
  height: 320px;
  margin-top: 70px;
  overflow: hidden;
  position: relative;
  font-size: 0;
}
.s_banner img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 320px;
  margin-left: -960px;
}
.s_banner .b_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.2);
}
.s_banner .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(87, 80, 200, 0.1);
}
.s_banner .txt {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 6px;
  color: #1b2a6d;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.s_banner .txt2 {
  position: absolute;
  top: 135px;
  right: 15%;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 6px;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.s_banner .txt3 {
  position: absolute;
  top: 105px;
  left: 20%;
  width: 100%;
  line-height: 45px;
  font-weight: bold;
  letter-spacing: 6px;
  color: #1b2a6d;
}
.s_banner .txt3 p {
  font-size: 44px;
  margin-bottom: 20px;
}
.s_banner .txt3 p + p {
  font-size: 22px;
}
.s_banner .txt4 {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 6px;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.s_banner .b_content {
  position: absolute;
  top: 110px;
  left: 60px;
  text-align: center;
  color: #fff;
  z-index: 1000;
}
.s_banner .b_content.news_txt {
  padding-left: 300px;
}
.s_banner .b_content.news_txt h1 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 6px;
}
.s_banner .b_content.news_txt h3 {
  letter-spacing: 6px;
  font-weight: bold;
}
.s_banner .b_content.service_txt h1,
.s_banner .b_content.service_txt h3 {
  font-weight: bold;
}
.s_banner .b_content h1 {
  font-size: 44px;
  line-height: 40px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-align: left;
}
.s_banner .b_content h3 {
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 3px;
}
.location {
  height: 40px;
  line-height: 39px;
  border: 1px solid #efefef;
  border-top: 0;
  background-color: #fff;
}
.pageNav {
  padding: 30px 0;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  text-align: center;
  cursor: default;
}
.pageNav span,
.pageNav a {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  margin: 0 3px;
  padding: 0 8px;
  border-radius: 4px;
  border: 1px solid #ddd;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  color: #333;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.pageNav span:hover,
.pageNav a:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.pageNav span.mor {
  border-radius: 0;
  border: 0;
  cursor: default;
}
.pageNav span.mor:hover {
  box-shadow: none;
}
.pageNav strong {
  display: inline-block;
  height: 25px;
  margin: 0 3px;
  padding: 0 8px;
  line-height: 25px;
  border-radius: 4px;
  border: 1px solid #f9be00;
  color: #fff;
  background-color: #f9be00;
  white-space: nowrap;
  cursor: default;
}
.stairs_box {
  display: none;
  position: fixed;
  top: 50%;
  right: 30px;
  width: 108px;
  line-height: 30px;
  border-radius: 8px;
  border: 4px solid #f9be00;
  background-color: #fff;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  z-index: 1000;
}
.stairs_box .go_top {
  width: 100%;
  height: 30px;
  margin-top: -4px;
  margin-bottom: 15px;
  color: #fff;
  background-color: #f9be00;
  cursor: pointer;
  position: relative;
}
.stairs_box .go_top:hover em {
  opacity: 0;
}
.stairs_box .go_top:hover span {
  opacity: 1;
}
.stairs_box .go_top em {
  display: inline-block;
  width: 0;
  height: 0;
  margin-top: 10px;
  border-bottom: 10px dashed;
  border-bottom: 10px solid\9;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.stairs_box .go_top span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 24px;
  margin-top: 3px;
  opacity: 0;
  z-index: 1;
}
.stairs_box ul {
  margin: 15px 0;
}
.stairs_box ul li {
  line-height: 30px;
}
.stairs_box ul li a {
  padding: 0 3px;
  color: #333;
  border-bottom: 1px dashed #f9be00;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.stairs_box ul li a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #f9be00;
}
.stairs_box .code {
  font-size: 0;
  line-height: 0;
}
.stairs_box .code p {
  font-size: 14px;
  line-height: 20px;
}
.stairs_box .code img {
  width: 80px;
  height: 80px;
}
/*-----------------------------------------*/
/****************icon样式*******************/
/*-----------------------------------------*/


@font-face {font-family: "iconfont";
  src: url('../fonts/iconfont.eot?t=1503368032921'); /* IE9*/
  src: url('../fonts/iconfont.eot?t=1503368032921#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('../fonts/iconfont.woff?t=1503368032921') format('woff'), /* chrome, firefox */
  url('../fonts/iconfont.ttf?t=1503368032921') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
  url('../fonts/iconfont.svg?t=1503368032921#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont {
  font-family:"iconfont" !important;
  font-size:16px;
  font-style:normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chanpin:before { content: "\e760"; }

.icon-icon1:before { content: "\e601"; }

.icon-chanpin1:before { content: "\e605"; }

.icon-liuyan-copy:before { content: "\e600"; }

.icon-location:before { content: "\e6c2"; }

.icon-gongsibiaozhi:before { content: "\e66d"; }

.icon-zuo:before { content: "\e607"; }

.icon-you:before { content: "\e65b"; }

.icon-name:before { content: "\e6a6"; }

.icon-tishi:before { content: "\e67c"; }

.icon-youenservices:before { content: "\e62b"; }

.icon-jiangbei1:before { content: "\e61a"; }

.icon-dianhua:before { content: "\e613"; }

.icon-bofang:before { content: "\e603"; }

.icon-liuyan:before { content: "\e6a8"; }

.icon--:before { content: "\e61b"; }

.icon-jiangbei2:before { content: "\e604"; }

.icon-dengpao1:before { content: "\e606"; }

.icon-company:before { content: "\e602"; }

.icon-dengpao:before { content: "\e67d"; }

.icon-scdizhi:before { content: "\e611"; }

.icon-zan-:before { content: "\e626"; }

.icon-fanhui:before { content: "\e68e"; }


/*-----------------------------------------*/
/****************首页样式*******************/
/*-----------------------------------------*/
.banner {
  font-size: 0;
}
.banner .section {
  overflow: hidden;
}
.banner img {
  max-width: 100%;
}
.banner .footer {
  margin-top: -71px;
  font-size: 14px;
}
.carousel {
  margin-top: 71px;
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  font-size: 0;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out opacity;
  -moz-transition: opacity 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out opacity;
  transition: 0.6s ease-in-out opacity;
}
.carousel-inner > .item.video_box {
  font-size: 0;
}
.carousel-inner > .item.video_box img {
  opacity: 0;
}
.carousel-inner > .item.video_box .video_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: scaleX(1.02);
  -moz-transform: scaleX(1.02);
  -ms-transform: scaleX(1.02);
  -o-transform: scaleX(1.02);
  transform: scaleX(1.02);
}
.carousel-inner > .item.video_box .video_cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.carousel-inner > .item.video_box h1 {
  position: absolute;
  top: 180px;
  left: 0;
  width: 100%;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  text-align: center;
  z-index: 10;
}
.carousel-inner > .item.video_box .video_btn {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 300px;
  left: 50%;
  margin-left: -30px;
  background: url("../images1/play_btn.png") no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  z-index: 10;
}
.carousel-inner > .item.video_box .video_trailer {
  display: none;
  position: absolute;
  top: 20px;
  left: 50%;
  width: 960px;
  height: 600px;
  margin-left: -480px;
  z-index: 10;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: opacity 0.6s ease-in-out;
    -moz-transition: opacity 0.6s ease-in-out;
    -o-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    opacity: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    opacity: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    opacity: 1;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  opacity: 1;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.carousel-inner > .next {
  opacity: 0;
}
.carousel-inner > .prev {
  opacity: 0;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  opacity: 1;
}
.carousel-inner > .active.left {
  opacity: 0;
}
.carousel-inner > .active.right {
  opacity: 0;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
.carousel-control.right {
  left: auto;
  right: 0;
}
.carousel-control:hover {
  outline: 0;
  color: #f9be00;
  text-decoration: none;
  opacity: 0.9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .icon-zuo,
.carousel-control .icon-you {
  position: absolute;
  top: 50%;
  font-size: 40px;
  margin-top: -20px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .icon-zuo {
  left: 50%;
  margin-left: -20px;
}
.carousel-control .icon-next,
.carousel-control .icon-you {
  right: 50%;
  margin-right: -20px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
/*-----------------------------------------*/
/**************场景页面样式*****************/
/*-----------------------------------------*/
.scene {
  margin-top: 71px;
  /************************application**************/
}
.scene h2 {
  width: 100%;
  line-height: 40px;
  margin-bottom: 50px;
  padding-left: 10px;
  color: #333;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
}
.scene .idea {
  height: 590px;
  padding-top: 50px;
  background-color: #fff;
  overflow: hidden;
}
.scene .idea .idea_lf {
  position: absolute;
  opacity: 0;
  top: 90px;
  left: -45%;
  width: 45%;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.scene .idea .idea_lf.mytransform {
  opacity: 1;
  left: 10px;
}
.scene .idea .idea_lf p {
  min-height: 35px;
  line-height: 35px;
  margin-bottom: 20px;
  color: #666;
  font-size: 18px;
}
.scene .idea .idea_lf p span {
  font-size: 18px;
  font-weight: bold;
}
.scene .idea .idea_lf p a {
  color: #f9be00;
}
.scene .idea .idea_rt {
  position: absolute;
  top: 40px;
  right: -600px;
  width: 600px;
  height: 420px;
  text-align: right;
  opacity: 0;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.scene .idea .idea_rt.mytransform {
  opacity: 1;
  right: 10px;
}
.scene .idea .idea_rt img {
  margin-top: -130px;
}
.scene .idea .idea_rt ul {
  position: absolute;
}
.scene .idea .idea_rt ul li {
  line-height: 24px;
  font-size: 12px;
  color: #d5b08a;
  list-style: disc;
  text-align: left;
}
.scene .idea .idea_rt ul.owner {
  top: 94px;
  left: 10px;
}
.scene .idea .idea_rt ul.design {
  top: 70px;
  right: 80px;
}
.scene .idea .idea_rt ul.construction {
  top: 282px;
  left: 10px;
}
.scene .idea .idea_rt ul.consult {
  top: 402px;
  right: 80px;
}
.scene .solution {
  height: 512px;
  padding-top: 50px;
  overflow: hidden;
}
.scene .solution .solution_lf {
  position: absolute;
  top: 90px;
  left: -35%;
  width: 35%;
  line-height: 24px;
  text-indent: 28px;
  text-align: justify;
  opacity: 0;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.scene .solution .solution_lf p {
  margin-bottom: 5px;
}
.scene .solution .solution_lf.mytransform {
  left: 10px;
  opacity: 1;
}
.scene .solution .solution_rt {
  position: absolute;
  top: 90px;
  right: -55%;
  width: 55%;
  height: 282px;
  opacity: 0;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.scene .solution .solution_rt.mytransform {
  right: 10px;
  opacity: 1;
}
.scene .solution .solution_rt div {
  position: absolute;
  padding: 8px;
  border-radius: 8px;
  border: 1px dashed #a7825a;
}
.scene .solution .solution_rt div p {
  font-size: 12px;
  width: 155px;
  line-height: 18px;
}
.scene .solution .solution_rt div.d1 {
  top: 15px;
  left: 16px;
}
.scene .solution .solution_rt div.d2 {
  top: 78px;
  left: -3px;
}
.scene .solution .solution_rt div.d3 {
  top: 140px;
  left: -25px;
}
.scene .solution .solution_rt ul {
  position: absolute;
  right: 0;
  width: 150px;
  font-size: 12px;
}
.scene .solution .solution_rt ul li {
  margin-bottom: 10px;
}
.scene .solution .solution_rt ul.u1 {
  top: 40px;
}
.scene .solution .solution_rt ul.u2 {
  top: 80px;
}
.scene .solution .solution_rt ul.u3 {
  top: 125px;
}
.scene .era {
  padding: 50px 0;
  background-color: #fff;
  overflow: hidden;
}
.scene .era p {
  padding: 0 100px;
  line-height: 24px;
  font-size: 16px;
  text-indent: 32px;
  margin-bottom: 50px;
}
.scene .era .btn_group {
  margin-bottom: 20px;
  font-size: 0;
  text-align: center;
  transform: translateY(50px);
  -ms-transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -o-transform: translateY(50px);
  -moz-transform: translateY(50px);
  opacity: 0;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.scene .era .btn_group.transform_y {
  transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  opacity: 1;
}
.scene .era .btn_group a {
  display: inline-block;
  width: 180px;
  height: 50px;
  line-height: 50px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  border: 1px solid #ddd;
  background-color: #efefef;
  border-right: 0;
}
.scene .era .btn_group a:hover {
  color: #333;
  text-decoration: none;
}
.scene .era .btn_group a:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.scene .era .btn_group a:last-child {
  border-right: 1px solid #ddd;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.scene .era .btn_group a.active {
  color: #fff;
  border-color: #f9be00;
  background-color: #f9be00;
}
.scene .era .content {
  width: 930px;
  height: 417px;
  margin: 0 auto 50px;
  position: relative;
  transform: translateY(150px);
  -ms-transform: translateY(150px);
  -webkit-transform: translateY(150px);
  -o-transform: translateY(150px);
  -moz-transform: translateY(150px);
  opacity: 0;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.scene .era .content.transform_y {
  transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  opacity: 1;
}
.scene .era .content .item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 930px;
  height: 417px;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.scene .era .content .item.active {
  opacity: 1;
}
.scene .era .content .item.active .i1 {
  left: 0;
}
.scene .era .content .item.active .i2 {
  right: 0;
}
.scene .era .content .item.active .i3,
.scene .era .content .item.active .i4 {
  bottom: 0;
}
.scene .era .content .item img {
  max-width: 100%;
  position: absolute;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.scene .era .content .item .i1 {
  top: 0;
  left: -100%;
}
.scene .era .content .item .i2 {
  top: 0;
  right: -100%;
}
.scene .era .content .item .i3 {
  left: 0;
  bottom: -100%;
}
.scene .era .content .item .i4 {
  left: 0;
  bottom: -50%;
}
.scene .application {
  width: 100%;
  padding: 50px 0;
}
.scene .application table {
  width: 100%;
  border: 2px solid #ddd;
  border-collapse: collapse;
  text-align: center;
}
.scene .application tr {
  width: 100%;
}
.scene .application th {
  font-size: 16px;
  height: 60px;
  border: 2px solid #ddd;
  text-align: center;
}
.scene .application td {
  height: 40px;
  border: 1px solid #ddd;
}
.scene .application tr > th:nth-child(1) {
  width: 200px;
}
.scene .application tr > th:nth-child(2) {
  width: 300px;
}
.scene .application tr > th:nth-child(3) {
  width: 300px;
}
.scene .application tr > th:nth-child(4) {
  width: 400px;
}
/*-----------------------------------------*/
/**************案例页面样式*****************/
/*-----------------------------------------*/
.cases {
  margin-top: 71px;
  background-color: #fff;
}
.cases .location {
  border: 0;
  margin: 10px 0;
}
.cases .ecosphere {
  width: 100%;
  height: auto;
  margin-top: 71px;
  padding-top: 100px;
  color: #a7825a;
  position: relative;
}
.cases .ecosphere > div {
  width: 100%;
  height: auto;
  position: absolute;
  top: 100px;
  opacity: 0;
  -webkit-transition: all .8s ease;
  -o-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}
.cases .ecosphere > .ecosphere_lf {
  left: -100%;
}
.cases .ecosphere > .ecosphere_rt {
  right: -100%;
}
.cases .ecosphere > div.ecosphere_lf.mytransform {
  left: 0;
  opacity: 1;
}
.cases .ecosphere > div.ecosphere_rt.mytransform {
  right: 0;
  opacity: 1;
}
.cases .ecosphere img {
  width: 100%;
  height: auto;
}
.cases .ecosphere .software {
  position: absolute;
}
.cases .ecosphere .software .software_lf {
  float: left;
  min-height: 88px;
  padding-right: 20px;
  padding-left: 20px;
  border-right: 2px solid #a7825a;
  text-align: right;
}
.cases .ecosphere .software .software_lf h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.cases .ecosphere .software .software_lf ul {
  margin-top: 8px;
}
.cases .ecosphere .software .software_lf li {
  margin: 0 -8px;
  line-height: 20px;
}
.cases .ecosphere .software_rt {
  padding-left: 20px;
}
.cases .ecosphere .software_rt P {
  text-align: left;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 500;
}
.cases .ecosphere .software .software_rt {
  float: left;
  min-height: 88px;
  padding-right: 20px;
  text-align: left;
}
.cases .ecosphere .software .software_rt h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.cases .ecosphere .software .software_rt ul {
  margin-top: 8px;
}
.cases .ecosphere .software .software_rt li {
  margin: 0 -8px;
  line-height: 20px;
}
.cases .ecosphere .software_lf P {
  margin-top: 5px;
  margin-right: 20px;
  font-size: 20px;
  font-weight: 500;
}
.cases .ecosphere .solution_bg_ico {
  width: 160px;
  height: 80px;
  margin-top: -20px;
  background: url("../images1/solution_bg_ico.png") no-repeat;
}
.cases .ecosphere .software_01 {
  top: -50px;
  left: 100px;
}
.cases .ecosphere .software_01 .solution_bg_ico {
  background-position: 0 0;
}
.cases .ecosphere .software_02 {
  top: 100px;
  left: 20px;
}
.cases .ecosphere .software_02 .solution_bg_ico {
  background-position: -160px 0;
}
.cases .ecosphere .software_03 {
  top: 240px;
  left: 40px;
}
.cases .ecosphere .software_03 .solution_bg_ico {
  background-position: -320px 0;
}
.cases .ecosphere .software_04 {
  top: 390px;
  left: 10px;
}
.cases .ecosphere .software_04 .solution_bg_ico {
  background-position: -480px 0;
}
.cases .ecosphere .software_05 {
  top: -80px;
  right: 150px;
}
.cases .ecosphere .software_05 .solution_bg_ico {
  background-position: 0 -80px;
}
.cases .ecosphere .software_06 {
  top: 100px;
  right: 30px;
}
.cases .ecosphere .software_06 .solution_bg_ico {
  background-position: -160px -80px;
}
.cases .ecosphere .software_07 {
  top: 260px;
  right: 20px;
}
.cases .ecosphere .software_07 .solution_bg_ico {
  background-position: -320px -80px;
}
.cases .ecosphere .software_08 {
  top: 420px;
  right: 50px;
}
.cases .ecosphere .software_08 .solution_bg_ico {
  background-position: -480px -80px;
}
.cases .ecosphere i.tag {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px;
  background-color: #d5b08a;
}
.cases .case_header {
  margin-bottom: 100px;
  padding-left: 100px;
}
.cases .case_header .case_header_lf {
  float: left;
  width: 50%;
  margin-right: 100px;
  margin-left: -100px;
}
.cases .case_header .case_header_rt {
  float: left;
  width: 50%;
}
.cases .case_header .case_header_rt h4 {
  height: 30px;
  line-height: 30px;
  color: #f9be00;
  font-size: 16px;
  font-weight: 700;
}
.cases .case_header .case_header_rt p {
  line-height: 28px;
  padding-left: 28px;
}
.cases .case_details {
  text-align: center;
  padding-bottom: 20px;
}
.cases .case_details h3 {
  line-height: 30px;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}
.cases .case_details div {
  width: 660px;
  margin: 0 auto;
}
.cases .case_details p {
  padding: 0 50px;
  text-align: left;
  margin-bottom: 10px;
  text-indent: 28px;
  font-size: 15px;
}
.cases .case_details p.p1 {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 20px;
  text-indent: 0;
}
.cases .case_details p.p1 span {
  padding: 5px 15px;
  line-height: 30px;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  border-radius: 3px;
  color: #fff;
  background-color: #f9be00;
}
.cases .case_details p.p2 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
  text-indent: 0;
}
.cases .case_details p.p3 {
  margin-top: -15px;
  margin-bottom: 20px;
  text-align: center;
  text-indent: 0;
}
.cases .case_details p.p4 {
  margin-top: -15px;
  margin-bottom: 30px;
}
.cases .case_details img {
  max-width: 650px;
  height: auto;
  margin-bottom: 20px;
}
.cases .case_details img.i1 {
  max-width: 325px;
}
.cases_list {
  padding: 50px 0;
}
.cases_list .cases_title ul {
  width: 600px;
  height: 40px;
  margin: 0 auto 50px;
}
.cases_list .cases_title li {
  float: left;
  width: 300px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #ddd;
  border-right: 0;
  text-align: center;
}
.cases_list .cases_title li:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.cases_list .cases_title li:last-child {
  border-right: 1px solid #ddd;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.cases_list .cases_title li:hover a {
  text-decoration: none;
}
.cases_list .cases_title li.active {
  border-color: #f9be00;
  background-color: #f9be00;
}
.cases_list .cases_title li.active a {
  color: #fff;
}
.cases_list .cases_title li a {
  display: block;
  width: 100%;
  height: 100%;
}
.cases_list .bim_content li {
  float: left;
  width: 33.33%;
  height: auto;
  font-size: 0;
  overflow: hidden;
  position: relative;
}
.cases_list .bim_content li:hover img {
  right: 50%;
}
.cases_list .bim_content li:hover .s_notes {
  opacity: 1;
  z-index: 99;
  transform: perspective(600px) rotateY(0deg);
  -ms-transform: perspective(600px) rotateY(0deg);
  /* IE 9 */
  -moz-transform: perspective(600px) rotateY(0deg);
  /* Firefox */
  -webkit-transform: perspective(600px) rotateY(0deg);
  /* Safari 和 Chrome */
  -o-transform: perspective(600px) rotateY(0deg);
  /* Opera */
}
.cases_list .bim_content li > a:first-child {
  display: block;
  width: 100%;
  height: auto;
}
.cases_list .bim_content img {
  width: 100%;
  height: 350px;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  position: relative;
  right: 0;
}
.cases_list .bim_content .s_notes {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  padding: 18px 10px;
  color: #333;
  opacity: 0;
  text-decoration: none;
  background-color: #fafafa;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  transform: perspective(600px) rotateY(-90deg);
  transform-origin: right center 0;
  -ms-transform: perspective(600px) rotateY(-90deg);
  /* IE 9 */
  -ms-transform-origin: right center 0;
  -moz-transform: perspective(600px) rotateY(-90deg);
  /* Firefox */
  -moz-transform-origin: right center 0;
  -webkit-transform: perspective(600px) rotateY(-90deg);
  /* Safari 和 Chrome */
  -webkit-transform-origin: right center 0;
  -o-transform: perspective(600px) rotateY(-90deg);
  /* Opera */
  -o-transform-origin: right center 0;
  /*display: none;*/
}
.cases_list .bim_content .s_notes h3 {
  font-size: 17px;
  margin: 5px 0 12px;
  color: #08A89E;
}
.cases_list .bim_content .s_notes p {
  max-height: 194px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 8px;
  padding: 0;
  font-size: 14px;
  text-indent: 14px;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}
.cases_list .bim_content .s_notes h5 {
  font-size: 14px;
}
.cases_list .site_content {
  display: none;
  margin-left: -20px;
}
.cases_list .site_content li {
  float: left;
  width: 33.33%;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.cases_list .site_content li img {
  width: 100%;
  height: auto;
}
.cases_list .site_content li .s_notes {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 20px;
  padding: 20px 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.cases_list .site_content li .s_notes:hover {
  opacity: 1;
}
.cases_list .site_content li .s_notes h3 {
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
.cases_list .site_content li .s_notes p {
  line-height: 24px;
  font-size: 14px;
}
.cases_list .site_content li .s_notes p b {
  color: #f9be00;
}
/*-----------------------------------------*/
/**************加盟页面样式*****************/
/*-----------------------------------------*/
.paterner {
  background-color: #fff;
}
.paterner .container {
  padding: 0 75px;
}
/*-----------------------------------------*/
/************服务体系页面样式***************/
/*-----------------------------------------*/
.service {
  /**********************项目咨询******************************/
  /**********************人才建设******************/
  /********************产品培训*****************/
  /************************网络平台**************************/
  /********************************跟踪辅导******************************/
  /********************************跟踪辅导******************************/
}
.service p {
  text-indent: 28px;
}
.service .consultation {
  width: 100%;
  padding: 100px 0;
}
.service h2 {
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-bottom: 100px;
  text-align: center;
  font-size: 32px;
  font-weight: normal;
}
.service .consultation div.wt {
  position: relative;
  height: 546px;
}
.service .consultation div.wt > div {
  position: absolute;
  right: 0;
  top: 440px;
  opacity: 0;
  -webkit-transition: all .8s ease;
  -o-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}
.service .consultation div.wt > div.mytransform {
  top: 140px;
  opacity: 1;
}
.service .consultation div.wt > div > div {
  width: 28%;
  margin-right: 8%;
}
.service .consultation div.wt > div > div:last-child {
  margin: 0;
}
.service .consultation h4 {
  color: #08A89E;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.service .consultation p {
  text-align: left;
  height: 120px;
  line-height: 24px;
  margin-bottom: 40px;
}
.service .consultation img {
  width: 100%;
  height: auto;
}
.service .consultation h4.tune {
  margin-top: 80px;
}
.service .build {
  width: 100%;
  padding: 100px 0;
  background-color: #fafafa;
}
.service .build img {
  width: 45%;
  height: auto;
}
.service .build div.wt {
  position: relative;
  height: 505px;
}
.service .build div.wt > div {
  position: absolute;
  top: 440px;
  left: 0;
  opacity: 0;
  -webkit-transition: all .8s ease;
  -o-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}
.service .build div.wt > div.mytransform {
  top: 140px;
  opacity: 1;
}
.service .build div.wt > div > div {
  width: 50%;
}
.service .build > p {
  width: 80%;
  line-height: 24px;
  margin-bottom: 12px;
}
.service .build .fw {
  width: 100%;
  margin-top: 40px;
  line-height: 30px;
}
.service .build .fw > div {
  margin-bottom: 20px;
}
.service .build h3 {
  color: #08A89E;
  font-size: 18px;
  margin-bottom: 20px;
}
.service .build .fw p {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 8px;
  letter-spacing: 2px;
  border: 1px dashed #ddd;
  text-indent: 0;
}
.service .build .fw .tag {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 12px;
  background-color: #666;
}
.service .train {
  width: 100%;
  padding: 100px 0;
}
.service .train div.wt {
  position: relative;
  height: 440px;
}
.service .train div.wt > div {
  position: absolute;
  top: 440px;
  left: 0;
  opacity: 0;
  -webkit-transition: all .8s ease;
  -o-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}
.service .train div.wt > div.mytransform {
  top: 140px;
  opacity: 1;
}
.service .train div.wt > div > div {
  width: 40%;
}
.service .train p {
  line-height: 24px;
  margin-bottom: 12px;
}
.service .train div.rt > div {
  margin-top: 40px;
}
.service .train img {
  width: 500px;
  height: auto;
}
.service .train h5 {
  width: 100%;
  text-align: left;
  color: #08A89E;
  font-size: 16px;
  margin-bottom: 12px;
  margin-top: 20px;
}
.service .train a {
  color: #08A89E;
  text-decoration: none;
  margin-left: 20px;
}
.service .train a:hover {
  text-decoration: underline;
}
.service .train li {
  line-height: 24px;
  list-style: disc;
  margin-left: 20px;
}
.service .platform {
  width: 100%;
  padding: 100px 0;
  background-color: #fafafa;
  position: relative;
}
.service .platform a {
  position: absolute;
  top: 250px;
  right: 210px;
  font-size: 40px;
  color: #666;
  text-decoration: none;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.service .platform a:hover {
  color: #08A89E;
  text-decoration: underline;
}
.service .platform div.wt {
  position: relative;
  height: 609px;
}
.service .platform div.wt > div {
  position: absolute;
  top: 440px;
  left: 0;
  opacity: 0;
  -webkit-transition: all .8s ease;
  -o-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}
.service .platform div.wt > div.mytransform {
  top: 140px;
  opacity: 1;
}
.service .platform div.wt > div > div {
  width: 40%;
}
.service .platform p {
  line-height: 24px;
  margin-bottom: 12px;
}
.service .platform div.lf > div {
  margin-top: 40px;
}
.service .platform img {
  width: 55%;
  height: auto;
  margin-top: 20px;
}
.service .platform h5 {
  width: 100%;
  text-align: left;
  color: #08A89E;
  font-size: 16px;
  margin-bottom: 12px;
}
.service .platform li {
  line-height: 24px;
  list-style: disc;
  margin-left: 20px;
}
.service .coach {
  width: 100%;
  padding: 100px 0;
}
.service .coach div.wt {
  position: relative;
  height: 495px;
}
.service .coach div.wt > div {
  position: absolute;
  top: 440px;
  left: 0;
  opacity: 0;
  -webkit-transition: all .8s ease;
  -o-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}
.service .coach div.wt > div.mytransform {
  top: 140px;
  opacity: 1;
}
.service .coach div.wt > div > div {
  width: 40%;
}
.service .coach p {
  line-height: 24px;
  margin-bottom: 12px;
}
.service .coach div.rt > div {
  margin-top: 40px;
}
.service .coach img {
  width: 500px;
  height: auto;
}
.service .coach h5 {
  width: 100%;
  text-align: left;
  color: #08A89E;
  font-size: 16px;
  margin-bottom: 12px;
  margin-top: 20px;
}
.service .coach li {
  line-height: 24px;
  list-style: disc;
  margin-left: 20px;
}
.service .lecture {
  width: 100%;
  padding: 100px 0;
  background-color: #fafafa;
}
.service .lecture h2 {
  margin-bottom: 20px;
}
.service .lecture .cjbt {
  font-size: 28px;
  padding-left: 400px;
  margin-bottom: 100px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: normal;
}
.service .lecture div.wt {
  position: relative;
  height: 933px;
}
.service .lecture div.wt > div {
  position: absolute;
  top: 500px;
  left: 0;
  opacity: 0;
  -webkit-transition: all .8s ease;
  -o-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}
.service .lecture div.wt > div.mytransform {
  top: 200px;
  opacity: 1;
}
.service .lecture div.wt > div > div {
  width: 40%;
}
.service .lecture p {
  line-height: 24px;
  margin-bottom: 12px;
}
.service .lecture span {
  display: inline-block;
  font-weight: bold;
  width: 140px;
}
.service .lecture div.lf > div {
  margin-top: 40px;
}
.service .lecture img {
  width: 50%;
  height: auto;
}
.service .lecture h5 {
  width: 100%;
  text-align: left;
  color: #08A89E;
  font-size: 16px;
  margin-bottom: 12px;
  margin-top: 20px;
}
.service .lecture li {
  line-height: 24px;
  list-style: disc;
  margin-left: 40px;
}
.service .lecture li:first-child {
  margin-left: 20px;
}
.service .lecture .tune > li {
  color: #666;
  margin-left: 60px;
  list-style: none;
}
/*-----------------------------------------*/
/***************产品页面样式****************/
/*-----------------------------------------*/
.product_item {
  margin-top: 20px;
}
.product_item .item {
  float: left;
  margin-left: -20px;
  padding-left: 25%;
  margin-bottom: 30px;
  position: relative;
}
.product_item .item .title {
  position: absolute;
  top: 0;
  right: 75%;
  bottom: 20px;
  left: 20px;
  padding-right: 5px;
}
.product_item .item .title > div {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: relative;
}
.product_item .item .title .bg_blue {
  background-color: #00bfff;
}
.product_item .item .title .bg_yellow {
  background-color: #f9be00;
}
.product_item .item .title .bg_green {
  background-color: #00a79d;
}
.product_item .item .title h4 {
  height: 30px;
  line-height: 30px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
.product_item .item .title a {
  position: absolute;
  top: 20px;
  right: 10px;
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.product_item .item .title img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 150px;
  margin-left: -75px;
  opacity: .8;
}
.product_item .item .list {
  float: left;
  width: 33.33%;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 0;
  position: relative;
}
.product_item .item .list:hover {
  text-decoration: none;
}
.product_item .item .list:hover div {
  height: 100%;
}
.product_item .item .list:hover div p {
  overflow: visible;
  white-space: normal;
}
.product_item .item .list img {
  width: 100%;
  height: auto;
}
.product_item .item .list div {
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 0;
  height: 30px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.product_item .item .list div p {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -15px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  font-size: 14px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
/*-----------------------------------------*/
/**************复制样式区域*****************/
/*-----------------------------------------*/
.connr {
  padding-top: 20px;
  margin-bottom: 20px;
}
.connr .pageNav {
  margin-top: 20px;
  margin-bottom: -50px;
}
.connr:after {
  clear: both;
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
}
.proleft {
  width: 280px;
  float: left;
  border: 1px solid #efefef;
  background-color: #fff;
  margin-right: 20px;
  padding: 20px 20px 50px;
}
.profl {
  padding: 10px;
}
.profl a:hover {
  text-decoration: none;
}
.profl .fp {
  font-size: 16px;
  height: 20px;
  line-height: 20px;
}
.profl .sp {
  margin: 10px 0 0 20px;
}
.profl .sp li {
  font-size: 14px;
  height: 36px;
  line-height: 36px;
}
.profl .sp li a {
  color: #757575;
}
.profl .sp li a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.profl .sp li a.Tuser_url {
  color: #3385ff;
}
.profl .sp li a:hover {
  color: #f9be00;
}
.proright {
  background-color: #fff;
  border: 1px solid #efefef;
  margin-left: 300px;
  padding: 50px 20px;
}
.protit {
  text-align: center;
  color: #333333;
}
.protit h2 {
  font-size: 36px;
  margin-bottom: 50px;
}
.wzlist li {
  padding: 0 0 0 20px;
  background: url(../images1/icons_tri7.png) no-repeat left 3px;
  height: 36px;
}
.wzlist li a:hover {
  color: #f9be00;
}
.wzlist li span {
  float: right;
  font-size: 12px;
  color: #434343;
}
/* product */
.procon h4 {
  color: #424242;
  font-size: 20px;
  margin: 20px 0;
}
.procon p {
  color: #757575;
  line-height: 26px;
  margin-bottom: 10px;
  text-indent: 2em;
}
.procon li {
  color: #757575;
}
.proright img {
  max-width: 100%;
}
.procon .protu {
  text-align: center;
  margin: 20px 0;
}
.aq4tu ul {
  overflow: hidden;
}
.aq4tu li {
  float: left;
  width: 25%;
  text-align: center;
}
.aq4tu li img {
  display: block;
  margin: 0 auto;
}
.uldian ul {
  margin-left: 20px;
}
.uldian li {
  line-height: 2.1;
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 10px;
}
.Tuser ul {
  overflow: hidden;
}
.Tuser li {
  float: left;
  margin-right: 20px;
  line-height: 24px;
}
.lmkbai {
  background-color: #fff;
  padding-top: 50px;
}
.akdxyh .flbt {
  font-size: 16px;
  font-weight: bold;
  color: #3385ff;
  height: 50px;
  padding: 15px 0;
}
.akdxyh ul {
  margin-bottom: 20px;
}
.akdxyh ul:after {
  clear: both;
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
}
.akdxyh li {
  float: left;
  margin-right: 20px;
  line-height: 24px;
}
.lmtit {
  text-align: center;
}
.lmtit h2 {
  font-size: 32px;
  height: 44px;
  line-height: 44px;
  color: #333;
}
.lmtit h3 {
  font-size: 32px;
  height: 44px;
  line-height: 44px;
  padding: 50px 0px;
}
.lmtitfu {
  text-align: center;
  font-size: 18px;
}
.lmconnr {
  margin-top: 50px;
}
.lmconnr p {
  text-indent: 2em;
  line-height: 26px;
  padding-bottom: 30px;
}
.jiameng {
  width: 800px;
  margin: 50px auto;
}
.daili {
  background: url(../images1/daili.jpg) no-repeat top center;
  height: 450px;
}
.yiwen {
  width: 100%;
  margin-left: 2%;
  text-align: center;
}
.yiwen:after {
  clear: both;
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
}
.yiwen li {
  width: 25%;
  height: 200px;
  float: left;
}
.wttb {
  margin: 0 auto;
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}
.jiameng {
  width: 800px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.jiameng:after {
  clear: both;
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
}
.diqu {
  margin: 10px;
  font-size: 18px;
  float: left;
}
.diqu span {
  float: left;
}
.xuanze {
  width: 245px;
  height: 33px;
  margin: 0 10px 0 20px;
  border: 1px solid #999;
  padding: 0 10px;
}
.xuanze1 {
  width: 245px;
  height: 33px;
  margin: 0 10px 0 130px;
  border: 1px solid #999;
  padding: 0 10px;
}
.wb {
  margin: 0 10px 0 20px;
  width: 245px;
  height: 28px;
  border: 1px solid #999;
  padding: 0 10px;
}
.liuyan {
  width: 630px;
  height: 100px;
  margin: 0 10px 0 20px;
  border: 1px solid #999;
  padding: 0 10px;
  resize: vertical;
  line-height: 20px;
}
.tijiao {
  width: 100px;
  height: 30px;
  margin-left: 100px;
  color: #fff;
  border-radius: 2px;
  border: none;
  background-color: #2dbaf5;
  cursor: pointer;
}
.mobile .header .second {
  display: none;
}


.mobile .footer .txt {
  display: none;
}
@media (max-width: 1199px) {
  .container {
    width: 950px;
  }
  .stairs_box {
    right: 20px;
  }
  .scene h2 {
    font-size: 28px;
  }
  .scene .idea {
    height: 520px;
  }
  .scene .idea .idea_lf p {
    font-size: 16px;
    line-height: 28px;
  }
  .scene .idea .idea_rt {
    top: 90px;
  }
  .scene .idea .idea_rt img {
    width: 400px;
  }
  .scene .idea .idea_rt ul.owner {
    top: 20px;
    left: 160px;
  }
  .scene .idea .idea_rt ul.design {
    top: 10px;
    right: 33px;
  }
  .scene .idea .idea_rt ul.construction {
    top: 142px;
    left: 160px;
  }
  .scene .idea .idea_rt ul.consult {
    top: 222px;
    right: 5px;
  }
  .scene .solution {
    height: 535px;
  }
  .scene .solution .solution_lf {
    width: 38%;
  }
  .scene .solution .solution_rt {
    text-align: right;
  }
  .scene .solution .solution_rt ul {
    right: 10px;
  }
  .scene .solution .solution_rt ul.u1 {
    top: 58px;
  }
  .scene .solution .solution_rt ul.u2 {
    top: 98px;
  }
  .scene .solution .solution_rt ul.u3 {
    top: 144px;
  }
  .cases_list .bim_content .s_notes {
    padding: 15px 10px;
  }
  .cases_list .bim_content .s_notes h3 {
    margin: 0 0 10px;
  }
  .cases_list .bim_content .s_notes p {
    text-indent: 0;
    font-size: 12px;
    line-height: 20px;
    max-height: 120px;
    -webkit-line-clamp: 6;
  }
  .cases_list .bim_content img {
    height: 288px;
  }
  .cases_list .site_content {
    width: 770px;
    margin: 0 auto;
  }
  .cases_list .site_content li {
    width: 50%;
  }
}
@media (max-width: 949px) {
  .container {
    width: 100%;
  }
}

/*bim.vip*/
.carousel-inner > .item.bimvip .canvas_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -10;
  background-color: #060e1b;
}
.carousel-inner > .item.bimvip .canvas_bg .canvaszz {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("/images1/in_top_bj.jpg") no-repeat;
  filter: alpha(opacity=40);
  opacity: 0.4;
}
.carousel-inner > .item.bimvip .canvas_bg canvas {
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: baseline;
  position: absolute;
  z-index: -1;
}
.carousel-inner > .item.bimvip img {
  width: 100%;
}
.carousel-inner > .item.bimvip .enroll_btn {
  position: absolute;
  bottom: 80px;
  left: 50%;
  display: block;
  width: 180px;
  height: 48px;
  margin-left: -90px;
  line-height: 48px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #081a54;
  background-color: #efd91b;
  text-align: center;
}
.carousel-inner > .item.bimvip .enroll_btn:hover {
  text-decoration: none;
  box-shadow: 0 0 8px rgba(239, 217, 27, 0.8);
}

@media (max-width: 767px) {
  .mobile {
    width: 100%;
    min-width: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
  }
  .mobile.active {
    margin-left: -250px;
    overflow: hidden;
  }
  .mobile.active .header {
    margin-left: -250px;
  }
  .mobile.active .header .second .icon-rt .myicon-nav .myicon-navbar-1 {
    margin-top: 4px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  .mobile.active .header .second .icon-rt .myicon-nav .myicon-navbar-2 {
    display: none;
  }
  .mobile.active .header .second .icon-rt .myicon-nav .myicon-navbar-3 {
    margin-top: -2px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .mobile.active .connr .proleft {
    margin-left: -250px;
    opacity: 1;
  }
  .mobile a,
  .mobile a:hover,
  .mobile a:active {
    color: #333;
    text-decoration: none;
  }
  .mobile .header {
    height: 51px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
  }
  .mobile .header .container {
    display: none;
  }
  .mobile .header .second {
    display: block;
    width: 100%;
    height: 100%;
  }
  .mobile .header .second .icon-lf {
    float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
  }
  .mobile .header .second .icon-lf .iconfont {
    display: block;
    font-size: 22px;
  }
  .mobile .header .second .icon-rt {
    float: right;
    width: 50px;
    height: 50px;
  }
  .mobile .header .second .icon-rt .myicon-nav {
    width: 22px;
    height: 22px;
    margin: 14px auto;
    padding: 4px 0;
  }
  .mobile .header .second .icon-rt .myicon-nav > div {
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
  }
  .mobile .header .second .icon-rt .myicon-nav > div + div {
    margin-top: 4px;
  }
  .mobile .header .second h3 {
    width: 100%;
    padding: 0 100px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
  }
  .mobile .footer {
    padding: 10px 0;
    line-height: 24px;
    color: #666;
    background-color: #fff;
    text-align: center;
  }
  .mobile .footer .container,
  .mobile .footer .beian {
    display: none;
  }
  .mobile .footer .txt {
    display: block;
  }
  .mobile .product .s_banner,
  .mobile .cases .s_banner,
  .mobile .product .location,
  .mobile .cases .location {
    display: none;
  }
  .mobile .product .container,
  .mobile .cases .container {
    padding: 0;
  }
  .mobile .connr {
    padding-top: 56px;
    margin-bottom: 5px;
  }
  .mobile .connr .proleft {
    position: fixed;
    top: 0;
    left: 100%;
    width: 250px;
    height: 100%;
    padding: 5px 10px 0;
    margin-left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 0;
    z-index: 10002;
    background: #2e2e2e;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
  }
  .mobile .connr .proleft a,
  .mobile .connr .proleft a:hover,
  .mobile .connr .proleft a:active {
    color: #fff;
  }
  .mobile .connr .proleft .profl {
    padding: 0 0 10px;
  }
  .mobile .connr .proleft .profl .fp {
    font-size: 18px;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    padding: 0 5px;
    border-bottom: 2px solid #f9be00;
  }
  .mobile .connr .proleft .profl .sp {
    margin: 0;
  }
  .mobile .connr .proleft .profl .sp li {
    height: 40px;
    line-height: 40px;
    padding: 0 5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }
  .mobile .connr .proright {
    padding: 20px 10px;
    margin-left: 0;
    border: 0;
  }
  .mobile .connr .proright .protit h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .mobile .connr .proright .procon h4 {
    font-size: 18px;
    margin: 10px 0;
  }
  .mobile .connr .proright .procon p {
    line-height: 24px;
  }
  .mobile .connr .proright .procon .protu {
    margin: 5px 0;
  }
  .mobile .connr .proright .aq4tu br {
    display: none;
  }
  .mobile .connr .proright .aq4tu li {
    width: 50%;
    margin-bottom: 10px;
  }
  .mobile .connr .proright .uldian ul {
    margin-left: 0;
  }
  .mobile .connr .proright .uldian li {
    line-height: 24px;
    margin-bottom: 5px;
  }
  .mobile .cases {
    margin-top: 56px;
    margin-bottom: 5px;
    background-color: transparent;
  }
  .mobile .cases .case_header {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
  }
  .mobile .cases .case_header .case_header_lf {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .mobile .cases .case_header .case_header_rt {
    width: 100%;
  }
  .mobile .cases .case_header .case_header_rt h4 {
    height: 20px;
    line-height: 20px;
  }
  .mobile .cases .case_header .case_header_rt p {
    margin-bottom: 5px;
    padding-left: 0;
    line-height: 24px;
    text-indent: 28px;
    text-align: justify;
  }
  .mobile .cases .case_details {
    text-align: center;
    padding: 1px 10px 10px;
    background-color: #fff;
  }
  .mobile .cases .case_details h3 {
    line-height: 30px;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
  }
  .mobile .cases .case_details div {
    width: 100%;
    font-size: 0;
    padding-left: 10px;
  }
  .mobile .cases .case_details p {
    padding: 0;
    text-align: left;
    margin-bottom: 5px;
    text-indent: 28px;
    font-size: 14px;
    line-height: 24px;
  }
  .mobile .cases .case_details p.p1 {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
  .mobile .cases .case_details p.p1 span {
    font-size: 18px;
  }
  .mobile .cases .case_details p.p2 {
    text-indent: 0;
    font-size: 16px;
  }
  .mobile .cases .case_details p.p3 {
    margin-top: -10px;
    margin-bottom: 5px;
    text-align: center;
  }
  .mobile .cases .case_details p.p4 {
    margin-top: -5px !important;
    margin-bottom: 5px;
  }
  .mobile .cases .case_details img {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .mobile .cases .case_details img.i1 {
    max-width: 50%;
  }
  .mobile .cases .case_details img.i1:nth-child(2n+1) {
    margin-left: -10px;
    margin-right: 10px;
  }
}